home *** CD-ROM | disk | FTP | other *** search
/ The Utilities Experience / The Utilities Experience - Volume 1.iso / software / graphics / gfx_card / egssys7.1update / egsclusterinc.lha / GBSelect.mod < prev    next >
Text File  |  1994-12-13  |  615b  |  27 lines

  1. |##########|
  2. |#MAGIC   #|DBGFFBLI
  3. |#PROJECT #|""
  4. |#PATHS   #|"EGSProject"
  5. |#FLAGS   #|-x---x--x-----x-----------------
  6. |#USERSW  #|--------------------------------
  7. |#USERMASK#|--------------------------------
  8. |#SWITCHES#|x--x-x----------
  9. |##########|
  10. (* $V- $R- $S- $N- *)
  11. IMPLEMENTATION MODULE GBSelect;
  12.  
  13. FROM Exec       IMPORT OpenLibrary,CloseLibrary;
  14. FROM Exceptions IMPORT CouldNotOpenLibrary;
  15.  
  16.  
  17. BEGIN
  18.   GBSelectBase:=OpenLibrary("egb/gbselect.library",0);
  19.   ASSERT(GBSelectBase#NIL,CouldNotOpenLibrary);
  20. CLOSE
  21.   IF GBSelectBase#NIL THEN
  22.     CloseLibrary(GBSelectBase);GBSelectBase:=NIL
  23.   END;
  24. END GBSelect.
  25.  
  26.  
  27.